            /* Reset and Base Styles */
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: 'Inter', sans-serif;
                line-height: 1.6;
                color: #1a1a1a;
                background-color: #ffffff;
                scroll-behavior: smooth;
            }
            /* Container */
            /* Hero Section */
            
            .hero-section {
                padding: 140px 0 80px;
                background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
                position: relative;
                overflow: hidden;
            }
            
            .hero-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #2563eb 0%, #fbbf24 50%, #2563eb 100%);
            }
            
            .hero-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 20px;
                display: grid;
                grid-template-columns: 1.2fr 1fr;
                gap: 80px;
                align-items: center;
            }
            
            .hero-title {
                font-family: 'Roboto Slab', serif;
                font-size: 4rem;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 25px;
                line-height: 1.1;
                background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
                color: #64748b;
                margin-bottom: 40px;
                line-height: 1.7;
                max-width: 600px;
            }
            
            .hero-buttons {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
            }
            
            .btn-primary,
            .btn-secondary {
                padding: 18px 35px;
                border-radius: 12px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 12px;
                transition: all 0.3s ease;
                font-size: 1.1rem;
                border: none;
                text-decoration: none;
            }
            
            .btn-primary {
                background: linear-gradient(135deg, #2563eb, #1d4ed8);
                color: white;
            }
            
            .btn-primary:hover {
                background: linear-gradient(135deg, #1d4ed8, #1e40af);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
            }
            
            .btn-secondary {
                background: transparent;
                color: #2563eb;
                border: 2px solid #2563eb;
            }
            
            .btn-secondary:hover {
                background: #2563eb;
                color: white;
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
            }
            
            .hero-visual {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .hero-icon-container {
                position: relative;
                width: 300px;
                height: 300px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .hero-icon {
                font-size: 6rem;
                color: #2563eb;
                z-index: 2;
                position: relative;
                animation: float 4s ease-in-out infinite;
            }
            
            .hero-backdrop {
                position: absolute;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                border-radius: 50%;
                opacity: 0.15;
                animation: pulse 3s ease-in-out infinite;
            }
            /* Plant Design Section */
            
            .plant-design-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                position: relative;
                overflow: hidden;
            }
            
            .plant-design-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #2563eb 0%, #fbbf24 50%, #2563eb 100%);
            }
            /* Section Header */
            
            .section-header {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 60px;
                align-items: center;
                margin-bottom: 80px;
            }
            
            .section-tag {
                display: inline-block;
                background: linear-gradient(90deg, #2563eb, #1d4ed8);
                color: white;
                padding: 8px 20px;
                border-radius: 25px;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-bottom: 20px;
            }
            
            .section-title {
                font-family: 'Roboto Slab', serif;
                font-size: 3.5rem;
                font-weight: 600;
                color: #1e293b;
                margin-bottom: 20px;
                line-height: 1.2;
            }
            
            .section-subtitle {
                font-size: 1.2rem;
                color: #64748b;
                max-width: 600px;
                line-height: 1.7;
            }
            
            .header-visual {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .design-icon-container {
                position: relative;
                width: 200px;
                height: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .design-icon {
                font-size: 4rem;
                color: #2563eb;
                z-index: 2;
                position: relative;
                animation: float 3s ease-in-out infinite;
            }
            
            .icon-backdrop {
                position: absolute;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                border-radius: 50%;
                opacity: 0.1;
                animation: pulse 2s ease-in-out infinite;
            }
            /* Services Grid */
            
            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 40px;
                margin-bottom: 80px;
            }
            
            .service-card {
                background: white;
                border-radius: 20px;
                padding: 40px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
                border: 2px solid transparent;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
            }
            
            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #2563eb, #fbbf24);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s ease;
            }
            
            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
                border-color: #e2e8f0;
            }
            
            .service-card:hover::before {
                transform: scaleX(1);
            }
            
            .service-card.featured {
                background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                color: white;
                transform: scale(1.05);
            }
            
            .service-card.featured .service-description,
            .service-card.featured .service-features {
                color: rgba(255, 255, 255, 0.9);
            }
            
            .featured-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: #fbbf24;
                color: #1e293b;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 6px;
            }
            
            .card-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 30px;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2rem;
                color: white;
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
            }
            
            .service-card.featured .service-icon {
                background: white;
                color: #2563eb;
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            }
            
            .service-number {
                font-size: 2rem;
                font-weight: 700;
                color: #e2e8f0;
                font-family: 'Roboto Slab', serif;
            }
            
            .service-card.featured .service-number {
                color: rgba(255, 255, 255, 0.3);
            }
            
            .service-title {
                font-family: 'Roboto Slab', serif;
                font-size: 1.5rem;
                font-weight: 600;
                color: #1e293b;
                margin-bottom: 15px;
            }
            
            .service-card.featured .service-title {
                color: white;
            }
            
            .service-description {
                font-size: 1rem;
                color: #64748b;
                margin-bottom: 25px;
                line-height: 1.7;
            }
            
            .service-features {
                list-style: none;
                margin-bottom: 30px;
            }
            
            .service-features li {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
                font-size: 0.95rem;
                color: #475569;
            }
            
            .service-card.featured .service-features li {
                color: rgba(255, 255, 255, 0.9);
            }
            
            .service-features i {
                color: #10b981;
                font-size: 0.8rem;
                width: 16px;
            }
            
            .service-card.featured .service-features i {
                color: #fbbf24;
            }
            
            .card-footer {
                margin-top: auto;
            }
            
            .learn-more-btn {
                background: linear-gradient(135deg, #2563eb, #1d4ed8);
                color: white;
                border: none;
                padding: 15px 30px;
                border-radius: 12px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 10px;
                transition: all 0.3s ease;
                width: 100%;
                justify-content: center;
            }
            
            .learn-more-btn:hover {
                background: linear-gradient(135deg, #1d4ed8, #1e40af);
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            }
            
            .service-card.featured .learn-more-btn {
                background: white;
                color: #2563eb;
            }
            
            .service-card.featured .learn-more-btn:hover {
                background: #f8fafc;
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            }
            /* Process Flow */
            
            .process-flow {
                background: white;
                border-radius: 25px;
                padding: 60px;
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
                margin-bottom: 80px;
                border: 1px solid #f1f5f9;
            }
            
            .process-header {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .process-title {
                font-family: 'Roboto Slab', serif;
                font-size: 2.5rem;
                font-weight: 600;
                color: #1e293b;
                margin-bottom: 15px;
            }
            
            .process-subtitle {
                font-size: 1.1rem;
                color: #64748b;
            }
            
            .process-steps {
                display: grid;
                grid-template-columns: 1fr auto 1fr auto 1fr;
                align-items: center;
                gap: 30px;
            }
            
            .process-step {
                text-align: center;
                padding: 30px 20px;
                background: #f8fafc;
                border-radius: 20px;
                transition: all 0.3s ease;
            }
            
            .process-step:hover {
                background: linear-gradient(135deg, #2563eb, #1d4ed8);
                color: white;
                transform: translateY(-5px);
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                font-weight: 700;
                margin: 0 auto 20px;
                transition: all 0.3s ease;
            }
            
            .process-step:hover .step-number {
                background: white;
                color: #2563eb;
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            }
            
            .step-content h4 {
                font-family: 'Roboto Slab', serif;
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 10px;
                color: #1e293b;
            }
            
            .process-step:hover .step-content h4 {
                color: white;
            }
            
            .step-content p {
                font-size: 0.95rem;
                color: #64748b;
                line-height: 1.5;
            }
            
            .process-step:hover .step-content p {
                color: rgba(255, 255, 255, 0.9);
            }
            
            .process-connector {
                width: 60px;
                height: 3px;
                background: linear-gradient(90deg, #2563eb, #fbbf24);
                border-radius: 2px;
            }
            /* Call to Action */
            
            .cta-section {
                background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
                border-radius: 25px;
                padding: 60px;
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 60px;
                align-items: center;
                color: white;
                position: relative;
                overflow: hidden;
            }
            
            .cta-section::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 100%;
                height: 200%;
                background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
                animation: rotate 20s linear infinite;
            }
            
            .cta-title {
                font-family: 'Roboto Slab', serif;
                font-size: 2.2rem;
                font-weight: 600;
                margin-bottom: 20px;
                line-height: 1.3;
            }
            
            .cta-description {
                font-size: 1.1rem;
                color: rgba(255, 255, 255, 0.8);
                margin-bottom: 40px;
                line-height: 1.6;
            }
            
            .cta-buttons {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
            }
            
            .cta-primary,
            .cta-secondary {
                padding: 18px 35px;
                border-radius: 12px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 12px;
                transition: all 0.3s ease;
                font-size: 1rem;
                border: none;
            }
            
            .cta-primary {
                background: linear-gradient(135deg, #fbbf24, #f59e0b);
                color: #1e293b;
            }
            
            .cta-primary:hover {
                background: linear-gradient(135deg, #f59e0b, #d97706);
                transform: translateY(-3px);
                box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
            }
            
            .cta-secondary {
                background: transparent;
                color: white;
                border: 2px solid rgba(255, 255, 255, 0.3);
            }
            
            .cta-secondary:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-3px);
            }
            
            .cta-stats {
                display: grid;
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stat-item {
                text-align: center;
                padding: 20px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 15px;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: #fbbf24;
                font-family: 'Roboto Slab', serif;
                margin-bottom: 5px;
            }
            
            .stat-label {
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.8);
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            /* Animations */
            
            @keyframes float {
                0%,
                100% {
                    transform: translateY(0px);
                }
                50% {
                    transform: translateY(-10px);
                }
            }
            
            @keyframes pulse {
                0%,
                100% {
                    transform: scale(1);
                    opacity: 0.1;
                }
                50% {
                    transform: scale(1.1);
                    opacity: 0.2;
                }
            }
            
            @keyframes rotate {
                from {
                    transform: rotate(0deg);
                }
                to {
                    transform: rotate(360deg);
                }
            }
            /* Responsive Design */
            
            @media (max-width: 1200px) {
                .hero-container {
                    grid-template-columns: 1fr;
                    gap: 60px;
                    text-align: center;
                }
                .hero-title {
                    font-size: 3.5rem;
                }
                .section-header {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 40px;
                }
                .section-title {
                    font-size: 3rem;
                }
                .cta-section {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    text-align: center;
                }
                .footer-content {
                    grid-template-columns: 1fr 1fr;
                    gap: 40px;
                }
            }
            
            @media (max-width: 768px) {
                .nav-menu {
                    position: fixed;
                    left: -100%;
                    top: 80px;
                    flex-direction: column;
                    background: rgba(255, 255, 255, 0.98);
                    width: 100%;
                    text-align: center;
                    transition: 0.3s;
                    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                    padding: 30px 0;
                    gap: 20px;
                }
                .nav-menu.active {
                    left: 0;
                }
                .nav-toggle {
                    display: flex;
                }
                .nav-toggle.active .bar:nth-child(2) {
                    opacity: 0;
                }
                .nav-toggle.active .bar:nth-child(1) {
                    transform: translateY(7px) rotate(45deg);
                }
                .nav-toggle.active .bar:nth-child(3) {
                    transform: translateY(-7px) rotate(-45deg);
                }
                .hero-section {
                    padding: 120px 0 60px;
                }
                .hero-title {
                    font-size: 2.8rem;
                }
                .hero-subtitle {
                    font-size: 1.1rem;
                }
                .hero-buttons {
                    flex-direction: column;
                    align-items: center;
                }
                .btn-primary,
                .btn-secondary {
                    width: 100%;
                    max-width: 300px;
                    justify-content: center;
                }
                .plant-design-section {
                    padding: 60px 0;
                }
                .container {
                    padding: 0 15px;
                }
                .section-title {
                    font-size: 2.5rem;
                }
                .services-grid {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }
                .service-card {
                    padding: 30px;
                }
                .service-card.featured {
                    transform: scale(1);
                }
                .process-flow {
                    padding: 40px 30px;
                }
                .process-steps {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                .process-connector {
                    width: 3px;
                    height: 40px;
                    margin: 0 auto;
                }
                .process-title {
                    font-size: 2rem;
                }
                .cta-section {
                    padding: 40px 30px;
                }
                .cta-title {
                    font-size: 1.8rem;
                }
                .cta-buttons {
                    flex-direction: column;
                }
                .cta-primary,
                .cta-secondary {
                    width: 100%;
                    justify-content: center;
                }
                .cta-stats {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 15px;
                }
                .stat-number {
                    font-size: 1.8rem;
                }
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    text-align: center;
                }
                .footer-bottom-content {
                    flex-direction: column;
                    gap: 20px;
                    text-align: center;
                }
                .footer-bottom-links {
                    justify-content: center;
                }
            }
            
            @media (max-width: 480px) {
                .section-title {
                    font-size: 2rem;
                }
                .service-card {
                    padding: 25px;
                }
                .service-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 1.5rem;
                }
                .service-number {
                    font-size: 1.5rem;
                }
                .service-title {
                    font-size: 1.3rem;
                }
                .cta-stats {
                    grid-template-columns: 1fr;
                }
            }